iT邦幫忙

2021 iThome 鐵人賽

DAY 13
0
Modern Web

白話JavaScript系列 第 13

Day13-Async && Await

  • 分享至 

  • xImage
  •  

前言

雖說ES6推出了promise解決了callback hell的問題,但人總是不容易滿足。

於是在ES7 有了Async && Await的出現,寫起來更是直覺簡單

Async

Async是宣告function的關鍵字

以下為宣告async function之寫法

const fetchFN = async() => {
    //block
}

async function getFn () {
  //block
}

Await

顧名思義 "等待",在Async function中我們可以使用await明確的等待有資料回傳,再依序執行下去。

const api = 'https://fakestoreapi.com/products'

const fetchFN = async() => {
  const data = await fetch(api)
  const result = await data.json()
  console.log(result)
}

首先宣告一個非同步函式,定義一個data變數接住fetch回傳的資料,然後把data使用.json轉為json檔之後回傳給result變數。

再來對比promise寫法

function getFN () {
  fetch(api)
  .then((data) => data.json())
  .then((result) => console.log(result))
}

async function當然也可以使用.then .catch抓住錯誤

const api = 'https://fakestoreapi.com/sdfdsafdsfda' //wrong api

const fetchFN = async() => {
  const data = await fetch(api) //return reject
  const result = await data.json()
  console.log(result)
}
fetchFN().then(() => console.log('success'))
fetchFN().catch((err) => console.log(err)) //error

我喜歡async的寫法,會比較有循序漸進的感覺!!!

/images/emoticon/emoticon07.gif


上一篇
Day12-救世主Promise
下一篇
Day14-This
系列文
白話JavaScript28
圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

尚未有邦友留言

立即登入留言